home *** CD-ROM | disk | FTP | other *** search
- var $ = function(x) { return document.getElementById(x); };
- var gUrl;
-
- function embedInit(){
- var params = window.arguments[0];
- gUrl = params.url;
- var title = params.title;
- $('embed-title').setAttribute('value',title);
- var source = "http://maps.stcstm.org/geoxml?url="+gUrl+"&type=m";
- var iframecode = '<iframe src="'+source+'" width="400" height="300" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" />';
- $('minimap-embed-code').setAttribute('value',iframecode);
- var body = $('minimap-embed-iframe').contentWindow.document.getElementsByTagName('body')[0];
- body.innerHTML = '<div width="100%" height="100%" align="center">'+iframecode+'</div>';
- }
-
- function embedRefresh(){
- var mt = $('minimap-embed-maptype').value;
- var title = $('embed-title').value;
- var w = $('minimap-embed-width').value;
- var h = $('minimap-embed-height').value;
- var source = "http://maps.stcstm.org/geoxml?url="+gUrl+"&type="+mt;
- var iframecode = '<iframe src="'+source+'" width="'+w+'" height="'+h+'" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" />';
- var body = $('minimap-embed-iframe').contentWindow.document.getElementsByTagName('body')[0];
- body.innerHTML = '<div width="100%" height="100%" align="center">'+iframecode+'</div>';
- }
-
-
-
-